From: Marek Vasut Date: Tue, 2 Oct 2018 11:51:19 +0000 (+0200) Subject: plat: rcar: Add E3 1GBx4 debug print X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=3b507aabd84d26be53585e5943bbcac07b434bb5;p=project%2Fbcm63xx%2Fatf.git plat: rcar: Add E3 1GBx4 debug print RCAR_DRAM_DDR3L_MEMCONF = 2 means E3 with 1GBx4 memory configuration. Add debug print for this configuration for completeness sake. Signed-off-by: Marek Vasut --- diff --git a/plat/renesas/rcar/bl2_plat_setup.c b/plat/renesas/rcar/bl2_plat_setup.c index 0e4be292..25ffd3b5 100644 --- a/plat/renesas/rcar/bl2_plat_setup.c +++ b/plat/renesas/rcar/bl2_plat_setup.c @@ -332,6 +332,9 @@ static void bl2_advertise_dram_size(uint32_t product, uint32_t cut) #elif (RCAR_DRAM_DDR3L_MEMCONF == 1) /* 2GB(512MBx4) */ NOTICE("BL2: 0x400000000 - 0x47fffffff, 2 GiB\n"); +#elif (RCAR_DRAM_DDR3L_MEMCONF == 2) + /* 4GB(1GBx4) */ + NOTICE("BL2: 0x400000000 - 0x4ffffffff, 4 GiB\n"); #endif /* RCAR_DRAM_DDR3L_MEMCONF == 0 */ } }